home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpjet.c < prev    next >
C/C++ Source or Header  |  1994-09-18  |  8KB  |  252 lines

  1. /* Copyright (C) 1991, 1992 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpjet.c */
  20. /* H-P PaintJet, PaintJet XL, and DEC LJ250 drivers. */
  21. /* Thanks to Rob Reiss (rob@moray.berkeley.edu) for the PaintJet XL */
  22. /* modifications. */
  23. #include "gdevprn.h"
  24. #include "gdevpcl.h"
  25.  
  26. /* X_DPI and Y_DPI must be the same, and may be either 90 or 180. */
  27. #define X_DPI 180
  28. #define Y_DPI 180
  29.  
  30. /* We round up LINE_SIZE to a multiple of 8 bytes */
  31. /* because that's the unit of transposition from pixels to planes. */
  32. #define LINE_SIZE ((X_DPI * 85 / 10 + 63) / 64 * 8)
  33.  
  34. /* The device descriptors */
  35. private dev_proc_print_page(lj250_print_page);
  36. private dev_proc_print_page(paintjet_print_page);
  37. private dev_proc_print_page(pjetxl_print_page);
  38. private int pj_common_print_page(P4(gx_device_printer *, FILE *, int, const char *));
  39. private gx_device_procs paintjet_procs =
  40.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  41.     gdev_pcl_3bit_map_rgb_color, gdev_pcl_3bit_map_color_rgb);
  42. gx_device_printer far_data gs_lj250_device =
  43.   prn_device(paintjet_procs, "lj250",
  44.     85,                /* width_10ths, 8.5" */
  45.     110,                /* height_10ths, 11" */
  46.     X_DPI, Y_DPI,
  47.     0.25, 0, 0.25, 0,        /* margins */
  48.     3, lj250_print_page);
  49. gx_device_printer far_data gs_paintjet_device =
  50.   prn_device(paintjet_procs, "paintjet",
  51.     85,                /* width_10ths, 8.5" */
  52.     110,                /* height_10ths, 11" */
  53.     X_DPI, Y_DPI,
  54.     0.25, 0, 0.25, 0,        /* margins */
  55.     3, paintjet_print_page);
  56. private gx_device_procs pjetxl_procs =
  57.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  58.     gdev_pcl_3bit_map_rgb_color, gdev_pcl_3bit_map_color_rgb);
  59. gx_device_printer far_data gs_pjetxl_device =
  60.   prn_device(pjetxl_procs, "pjetxl",
  61.     85,                /* width_10ths, 8.5" */
  62.     110,                /* height_10ths, 11" */
  63.     X_DPI, Y_DPI,
  64.     0.25, 0, 0, 0,            /* margins */
  65.     3, pjetxl_print_page);
  66.  
  67. /* Forward references */
  68. private int compress1_row(P3(const byte *, const byte *, byte *));
  69.  
  70. /* ------ Internal routines ------ */
  71.  
  72. /* Send a page to the LJ250.  We need to enter and exit */
  73. /* the PaintJet emulation mode. */
  74. private int
  75. lj250_print_page(gx_device_printer *pdev, FILE *prn_stream)
  76. {    fputs("\033%8", prn_stream);    /* Enter PCL emulation mode */
  77.     /* ends raster graphics to set raster graphics resolution */
  78.     fputs("\033*rB", prn_stream);
  79.     /* Exit PCL emulation mode after printing */
  80.     return pj_common_print_page(pdev, prn_stream, 0, "\033*r0B\014\033%@");
  81. }
  82.  
  83. /* Send a page to the PaintJet. */
  84. private int
  85. paintjet_print_page(gx_device_printer *pdev, FILE *prn_stream)
  86. {    /* ends raster graphics to set raster graphics resolution */
  87.     fputs("\033*rB", prn_stream);
  88.     return pj_common_print_page(pdev, prn_stream, 0, "\033*r0B\014");
  89. }
  90.  
  91. /* Send a page to the PaintJet XL. */
  92. private int
  93. pjetxl_print_page(gx_device_printer *pdev, FILE *prn_stream)
  94. {    /* Initialize PaintJet XL for printing */
  95.     fputs("\033E", prn_stream);
  96.     /* The XL has a different vertical origin, who knows why?? */
  97.     return pj_common_print_page(pdev, prn_stream, -360, "\033*rC");
  98. }
  99.  
  100. /* Send the page to the printer.  Compress each scan line. */
  101. private int
  102. pj_common_print_page(gx_device_printer *pdev, FILE *prn_stream, int y_origin,
  103.   const char *end_page)
  104. {
  105. #define DATA_SIZE (LINE_SIZE * 8)
  106.     byte *data =
  107.         (byte *)gs_malloc(DATA_SIZE, 1,
  108.                   "paintjet_print_page(data)");
  109.     byte *plane_data =
  110.         (byte *)gs_malloc(LINE_SIZE * 3, 1,
  111.                   "paintjet_print_page(plane_data)");
  112.     if ( data == 0 || plane_data == 0 )
  113.     {    if ( data )
  114.             gs_free((char *)data, DATA_SIZE, 1,
  115.                 "paintjet_print_page(data)");
  116.         if ( plane_data )
  117.             gs_free((char *)plane_data, LINE_SIZE * 3, 1,
  118.                 "paintjet_print_page(plane_data)");
  119.         return_error(gs_error_VMerror);
  120.     }
  121.  
  122.     /* set raster graphics resolution -- 90 or 180 dpi */
  123.     fprintf(prn_stream, "\033*t%dR", X_DPI);
  124.  
  125.     /* set the line width */
  126.     fprintf(prn_stream, "\033*r%dS", DATA_SIZE);
  127.  
  128.     /* set the number of color planes */
  129.     fprintf(prn_stream, "\033*r%dU", 3);        /* always 3 */
  130.  
  131.     /* move to top left of page */
  132.     fprintf(prn_stream, "\033&a0H\033&a%dV", y_origin);
  133.  
  134.     /* select data compression */
  135.     fputs("\033*b1M", prn_stream);
  136.  
  137.     /* start raster graphics */
  138.     fputs("\033*r1A", prn_stream);
  139.  
  140.     /* Send each scan line in turn */
  141.        {    int lnum;
  142.         int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  143.         int num_blank_lines = 0;
  144.         for ( lnum = 0; lnum < pdev->height; lnum++ )
  145.            {    byte *end_data = data + line_size;
  146.             gdev_prn_copy_scan_lines(pdev, lnum,
  147.                          (byte *)data, line_size);
  148.             /* Remove trailing 0s. */
  149.             while ( end_data > data && end_data[-1] == 0 )
  150.                 end_data--;
  151.             if ( end_data == data )
  152.                {    /* Blank line */
  153.                 num_blank_lines++;
  154.                }
  155.             else
  156.                {    int i;
  157.                 byte *odp;
  158.                 byte *row;
  159.  
  160.                 /* Pad with 0s to fill out the last */
  161.                 /* block of 8 bytes. */
  162.                 memset(end_data, 0, 7);
  163.  
  164.                 /* Transpose the data to get pixel planes. */
  165.                 for ( i = 0, odp = plane_data; i < DATA_SIZE;
  166.                       i += 8, odp++
  167.                     )
  168.                  { /* The following is for 16-bit machines */
  169. #define spread3(c)\
  170.  { 0, c, c*0x100, c*0x101, c*0x10000L, c*0x10001L, c*0x10100L, c*0x10101L }
  171.                    static ulong spr40[8] = spread3(0x40);
  172.                    static ulong spr8[8] = spread3(8);
  173.                    static ulong spr2[8] = spread3(2);
  174.                    register byte *dp = data + i;
  175.                    register ulong pword =
  176.                      (spr40[dp[0]] << 1) +
  177.                      (spr40[dp[1]]) +
  178.                      (spr40[dp[2]] >> 1) +
  179.                      (spr8[dp[3]] << 1) +
  180.                      (spr8[dp[4]]) +
  181.                      (spr8[dp[5]] >> 1) +
  182.                      (spr2[dp[6]]) +
  183.                      (spr2[dp[7]] >> 1);
  184.                    odp[0] = (byte)(pword >> 16);
  185.                    odp[LINE_SIZE] = (byte)(pword >> 8);
  186.                    odp[LINE_SIZE*2] = (byte)(pword);
  187.                  }
  188.                 /* Skip blank lines if any */
  189.                 if ( num_blank_lines > 0 )
  190.                    {    /* move down from current position */
  191.                     fprintf(prn_stream, "\033&a+%dV",
  192.                         num_blank_lines * (720 / Y_DPI));
  193.                     num_blank_lines = 0;
  194.                    }
  195.  
  196.                 /* Transfer raster graphics */
  197.                 /* in the order R, G, B. */
  198.                 for ( row = plane_data + LINE_SIZE * 2, i = 0;
  199.                       i < 3; row -= LINE_SIZE, i++
  200.                     )
  201.                    {    byte temp[LINE_SIZE * 2];
  202.                     int count = compress1_row(row, row + LINE_SIZE, temp);
  203.                     fprintf(prn_stream, "\033*b%d%c",
  204.                         count, "VVW"[i]);
  205.                     fwrite(temp, sizeof(byte),
  206.                            count, prn_stream);
  207.                    }
  208.                }
  209.            }
  210.        }
  211.  
  212.     /* end the page */
  213.     fputs(end_page, prn_stream);
  214.  
  215.     gs_free((char *)data, DATA_SIZE, 1, "paintjet_print_page(data)");
  216.     gs_free((char *)plane_data, LINE_SIZE * 3, 1, "paintjet_print_page(plane_data)");
  217.  
  218.     return 0;
  219. }
  220.  
  221. /*
  222.  * Row compression for the H-P PaintJet.
  223.  * Compresses data from row up to end_row, storing the result
  224.  * starting at compressed.  Returns the number of bytes stored.
  225.  * The compressed format consists of a byte N followed by a
  226.  * data byte that is to be repeated N+1 times.
  227.  * In the worst case, the `compressed' representation is
  228.  * twice as large as the input.
  229.  * We complement the bytes at the same time, because
  230.  * we accumulated the image in complemented form.
  231.  */
  232. private int
  233. compress1_row(const byte *row, const byte *end_row,
  234.   byte *compressed)
  235. {    register const byte *in = row;
  236.     register byte *out = compressed;
  237.     while ( in < end_row )
  238.        {    byte test = *in++;
  239.         const byte *run = in;
  240.         while ( in < end_row && *in == test ) in++;
  241.         /* Note that in - run + 1 is the repetition count. */
  242.         while ( in - run > 255 )
  243.            {    *out++ = 255;
  244.             *out++ = ~test;
  245.             run += 256;
  246.            }
  247.         *out++ = in - run;
  248.         *out++ = ~test;
  249.        }
  250.     return out - compressed;
  251. }
  252.